home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’95
/
TrashHack
/
DrawStringPatch.a
< prev
next >
Wrap
Text File
|
1995-06-24
|
537b
|
30 lines
; TrashHack.a
; by Jase
; this patch checks to see whether the Finder is drawing the "Trash"
; if so, the string is butchered to represent the size of the trash in K
INCLUDE 'SysEqu.a'
INCLUDE 'ToolEqu.a'
INCLUDE 'Traps.a'
IMPORT TRASHHACK
DRAWSTRINGPATCH proc export
; arrive here when someone calls DrawString (trap A884)
; go off and do the biz
move.l $4(sp), -(sp)
jsr TRASHHACK
Finish
; jump off to the original patch destination
; patched by installer
dc.w $4ef9
dc.w $ffff
dc.w $ffff
end